feat(datalayers-single): add postgres, redis, prometheus protocol support - #1
Merged
Conversation
…port
Add optional protocol support toggled via service.{postgres,redis,prometheus}.enabled
in values.yaml. When enabled, the chart injects the corresponding DATALAYERS_SERVER__*__ADDR
env var, exposes the container port, and adds a Service port.
- PostgreSQL (5432): enabled via DATALAYERS_SERVER__POSTGRES__ADDR
- Redis (6379): enabled via DATALAYERS_SERVER__REDIS__ADDR, reuses auth secret for credentials
- Prometheus (9090): enabled via DATALAYERS_SERVER__PROMETHEUS__ADDR
All three are disabled by default, matching Datalayers upstream defaults.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
service.{postgres,redis,prometheus}.enabledin values.yaml (all disabled by default)DATALAYERS_SERVER__*__ADDRenv var, exposes the container port, and adds a Service portauth.static)memtable_size,ttl) use Datalayers defaults, configurable viadatalayersConfigTOML if neededReference: https://docs.datalayers.cn/datalayers/latest/development-guide/connection.html#端口说明
Changes
values.yamlservice.postgres/redis/prometheusblockstemplates/statefulset.yamltemplates/service.yamltemplates/NOTES.txtTest plan
helm lintpasseshelm templatewith defaults — no protocol ports in output (unchanged behavior)helm template --set service.postgres.enabled=true— PostgreSQL port + env var presenthelm template --set service.redis.enabled=true— Redis port + ADDR/USERNAME/PASSWORD env vars presenthelm template --set service.prometheus.enabled=true— Prometheus port + env var presenthelm templatewith all three enabled — all ports and env vars present together